{% extends 'base_dashboard.html' %} {% load site_tags %} {% block title %}Complete Payment — {{ site_settings.institute_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Complete payment

Activate your course by paying with an available method below.

My Enrollments
{{ object.course.title }}
{% if object.promo_code %} {% format_price list_price %} {% format_price amount_due %} {{ object.promo_code.code }} {% elif list_price > 0 %} Fee: {% format_price amount_due %} {% else %} Free course {% endif %}
Pending
College / university promo code
{% if object.promo_code %}
Applied {{ object.promo_code.code }} for {{ object.promo_code.institute_name }} ({{ object.promo_code.discount_label }} · saved {% format_price object.discount_amount %})
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% if not manual_enabled and not stripe_enabled %}
No payment methods are enabled. Please contact the academy admin.
{% endif %}
{% if stripe_enabled %}
Pay with Stripe
Card payment · instant activation

You'll be redirected to Stripe Checkout. After a successful payment, your course unlocks automatically.

{% csrf_token %}
{% endif %} {% if manual_enabled %}
Manual payment
Transfer + upload proof · admin approval
{% if site.manual_payment_instructions %}
{{ site.manual_payment_instructions }}
{% endif %}
{% csrf_token %}
Screenshot or receipt image
{{ form.payment_proof }} {% if form.payment_proof.errors %}
{{ form.payment_proof.errors.0 }}
{% endif %}
{{ form.payment_note }}
{% endif %}
{% endblock %}